home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / shc.h < prev    next >
C/C++ Source or Header  |  1997-03-03  |  8KB  |  246 lines

  1. /* Copyright (C) 1992, 1995 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* shc.h */
  20. /* Common definitions for filters using Huffman coding */
  21. /* Requires scommon.h */
  22.  
  23. #ifndef shc_INCLUDED
  24. #  define shc_INCLUDED
  25.  
  26. #include "gsbittab.h"
  27.  
  28. /*
  29.  * These definitions are valid for code lengths up to 16 bits
  30.  * and non-negative decoded values up to 15 bits.
  31.  *
  32.  * We define 3 different representations of the code: encoding tables,
  33.  * decoding tables, and a definition table which can be generated easily
  34.  * from frequency information and which in turn can easily generate
  35.  * the encoding and decoding tables.
  36.  *
  37.  * The definition table has two parts: a list of the number of i-bit
  38.  * codes for each i >= 1, and the decoded values corresponding to
  39.  * the code values in increasing lexicographic order (which will also
  40.  * normally be decreasing code frequency).  Calling these two lists
  41.  * L[1..M] and V[0..N-1] respectively, we have the following invariants:
  42.  *    - 1 <= M <= max_hc_length, N >= 2.
  43.  *    - L[0] = 0.
  44.  *    - for i=1..M, L[i] >= 0.
  45.  *    - sum(i=1..M: L[i]) = N.
  46.  *    - sum(i=1..M: L[i] * 2^-i) = 1.
  47.  *    - V[0..N-1] are a permutation of the integers 0..N-1.
  48.  */
  49. #define max_hc_length 16
  50. typedef struct hc_definition_s {
  51.     ushort *counts;            /* [0..M] */
  52.     uint num_counts;        /* M */
  53.     ushort *values;            /* [0..N-1] */
  54.     uint num_values;        /* N */
  55. } hc_definition;
  56.  
  57. /* ------ Common state ------ */
  58.  
  59. /*
  60.  * Define the common stream state for Huffman-coded filters.
  61.  * Invariants when writing:
  62.  *    0 <= bits_left <= hc_bits_size;
  63.  *    Only the leftmost (hc_bits_size - bits_left) bits of bits
  64.  *      contain valid data.
  65.  */
  66. #define stream_hc_state_common\
  67.     stream_state_common;\
  68.         /* The client sets the following before initialization. */\
  69.     bool FirstBitLowOrder;\
  70.         /* The following are updated dynamically. */\
  71.     uint bits;        /* most recent bits of input or */\
  72.                 /* current bits of output */\
  73.     int bits_left        /* # of valid low bits (input) or */\
  74.                 /* unused low bits (output) in above, */\
  75.                 /* 0 <= bits_left <= 7 */
  76. typedef struct stream_hc_state_s {
  77.     stream_hc_state_common;
  78. } stream_hc_state;
  79.  
  80. #define hc_bits_size (arch_sizeof_int * 8)
  81. #define s_hce_init_inline(ss)\
  82.   ((ss)->bits = 0, (ss)->bits_left = hc_bits_size)
  83. #define s_hcd_init_inline(ss)\
  84.   ((ss)->bits = 0, (ss)->bits_left = 0)
  85.  
  86. /* ------ Encoding tables ------ */
  87.  
  88. /* Define the structure for the encoding tables. */
  89. typedef struct hce_code_s {
  90.     ushort code;
  91.     ushort code_length;
  92. } hce_code;
  93. #define hce_entry(c, len) { c, len }
  94.  
  95. typedef struct hce_table_s {
  96.     uint count;
  97.     hce_code *codes;
  98. } hce_table;
  99.  
  100. #define hce_bits_available(n)\
  101.   (ss->bits_left >= (n) || wlimit - q > ((n) - ss->bits_left - 1) >> 3)
  102.  
  103. /* ------ Encoding utilities ------ */
  104.  
  105. /*
  106.  * Put a code on the output.  The client is responsible for ensuring
  107.  * that q does not exceed pw->limit.
  108.  */
  109.  
  110. #ifdef DEBUG
  111. #  define hc_print_value(code, clen)\
  112.     (gs_debug_c('W') ?\
  113.      (dprintf2("[W]0x%x,%d\n", code, clen), 0) : 0)
  114. #  define hc_print_value_then(code, clen) hc_print_value(code, clen), 
  115. #else
  116. #  define hc_print_value(code, clen) 0
  117. #  define hc_print_value_then(code, clen) /* */
  118. #endif
  119. #define hc_print_code(rp) hc_print_value((rp)->code, (rp)->code_length)
  120.  
  121. /* Declare variables that hold the encoder state. */
  122. #define hce_declare_state\
  123.     register uint bits;\
  124.     register int bits_left
  125.  
  126. /* Load the state from the stream. */
  127. /* Free variables: ss, bits, bits_left. */
  128. #define hce_load_state()\
  129.     bits = ss->bits, bits_left = ss->bits_left
  130.  
  131. /* Store the state back in the stream. */
  132. /* Free variables: ss, bits, bits_left. */
  133. #define hce_store_state()\
  134.     ss->bits = bits, ss->bits_left = bits_left
  135.  
  136. /* Put a code on the stream. */
  137. void hc_put_code_proc(P3(bool, byte *, uint));
  138. #define hc_put_value(ss, q, code, clen)\
  139.   (hc_print_value_then(code, clen)\
  140.    ((bits_left -= (clen)) >= 0 ?\
  141.     (bits += (code) << bits_left) :\
  142.     (hc_put_code_proc((ss)->FirstBitLowOrder,\
  143.               q += hc_bits_size >> 3,\
  144.               (bits + ((code) >> -bits_left))),\
  145.      bits = (code) << (bits_left += hc_bits_size))))
  146. #define hc_put_code(ss, q, cp)\
  147.   hc_put_value(ss, q, (cp)->code, (cp)->code_length)
  148.  
  149. /*
  150.  * Force out the final bits to the output.
  151.  * Note that this does a store_state, but not a load_state.
  152.  */
  153. byte *hc_put_last_bits_proc(P4(stream_hc_state *, byte *, uint, int));
  154. #define hc_put_last_bits(ss, q)\
  155.   hc_put_last_bits_proc(ss, q, bits, bits_left)
  156.  
  157. /* ------ Decoding tables ------ */
  158.  
  159. /*
  160.  * Define the structure for the decoding tables.
  161.  * First-level nodes are either leaves, which have
  162.  *    value = decoded value
  163.  *    code_length <= initial_bits
  164.  * or non-leaves, which have
  165.  *    value = the index of a sub-table
  166.  *    code_length = initial_bits + the number of additional dispatch bits
  167.  * Second-level nodes are always leaves, with
  168.  *    code_length = the actual number of bits in the code - initial_bits.
  169.  */
  170.  
  171. typedef struct hcd_code_s {
  172.     short value;
  173.     ushort code_length;
  174. } hcd_code;
  175.  
  176. typedef struct hcd_table_s {
  177.     uint count;
  178.     uint initial_bits;
  179.     hcd_code *codes;
  180. } hcd_table;
  181.  
  182. /* Declare variables that hold the decoder state. */
  183. #define hcd_declare_state\
  184.     register const byte *p;\
  185.     const byte *rlimit;\
  186.     uint bits;\
  187.     int bits_left
  188.  
  189. /* Load the state from the stream. */
  190. /* Free variables: pr, ss, p, rlimit, bits, bits_left. */
  191. #define hcd_load_state()\
  192.     p = pr->ptr,\
  193.     rlimit = pr->limit,\
  194.     bits = ss->bits,\
  195.     bits_left = ss->bits_left
  196.  
  197. /* Store the state back in the stream. */
  198. /* Put back any complete bytes into the input buffer. */
  199. /* Free variables: pr, ss, p, bits, bits_left. */
  200. #define hcd_store_state()\
  201.     pr->ptr = p -= (bits_left >> 3),\
  202.     ss->bits = bits >>= (bits_left & ~7),\
  203.     ss->bits_left = bits_left &= 7
  204.  
  205. /* Macros to get blocks of bits from the input stream. */
  206. /* Invariants: 0 <= bits_left <= bits_size; */
  207. /* bits [bits_left-1..0] contain valid data. */
  208.  
  209. #define hcd_bits_available(n)\
  210.   (bits_left >= (n) || rlimit - p > ((n) - bits_left - 1) >> 3)
  211. /* For hcd_ensure_bits, n must not be greater than 8. */
  212. #define hcd_ensure_bits(n, outl)\
  213.   if ( bits_left < n ) hcd_more_bits(outl)
  214.  
  215. /* Load more bits into the buffer. */
  216. #define hcd_more_bits_1(outl)\
  217.   { int c;\
  218.     if ( p < rlimit ) c = *++p;\
  219.     else goto outl;\
  220.     if ( ss->FirstBitLowOrder ) c = byte_reverse_bits[c];\
  221.     bits = (bits << 8) + c, bits_left += 8;\
  222.   }
  223. #if hc_bits_size == 16
  224. #  define hcd_more_bits(outl) hcd_more_bits_1(outl)
  225. #else                /* hc_bits_size >= 32 */
  226. #  define hcd_more_bits(outl)\
  227.   { if ( rlimit - p < 3 ) hcd_more_bits_1(outl)\
  228.     else\
  229.     { if ( ss->FirstBitLowOrder )\
  230.     bits = (bits << 24) + ((uint)byte_reverse_bits[p[1]] << 16) + ((uint)byte_reverse_bits[p[2]] << 8) + byte_reverse_bits[p[3]];\
  231.       else\
  232.     bits = (bits << 24) + ((uint)p[1] << 16) + ((uint)p[2] << 8) + p[3];\
  233.       bits_left += 24, p += 3;\
  234.     }\
  235.   }
  236. #endif
  237.  
  238. #define hcd_peek_bits(n) ((bits >> (bits_left - (n))) & ((1 << (n)) - 1))
  239.  
  240. #define hcd_peek_var_bits(n)\
  241.   ((bits >> (bits_left - (n))) & byte_right_mask[n])
  242.  
  243. #define hcd_skip_bits(n) (bits_left -= (n))
  244.  
  245. #endif                    /* shc_INCLUDED */
  246.